Skip to content

build(deps): bump laravel/scout from 10.24.0 to 11.1.0#256

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/composer/laravel/scout-11.1.0
Open

build(deps): bump laravel/scout from 10.24.0 to 11.1.0#256
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/composer/laravel/scout-11.1.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2026

Bumps laravel/scout from 10.24.0 to 11.1.0.

Release notes

Sourced from laravel/scout's releases.

v11.1.0

v11.0.0

v10.25.0

Changelog

Sourced from laravel/scout's changelog.

v11.1.0 - 2026-03-18

v11.0.0 - 2026-03-10

Upgrade guide

Sourced from laravel/scout's upgrade guide.

Upgrade Guide

Upgrading To 11.0 From 10.x

Builder wheres Property and Custom Engines

In previous Scout releases, the wheres property on the Builder instance was a simple key / value associative array. In Scout 11.x, the wheres property is now an array of arrays, with each entry containing field, operator, and value keys. This change was made to support comparison operators such as >, <, >=, <=, and != via the where method:

User::search('*')->where('age', '>', 30)->get();

If you are directly accessing the wheres property within a custom engine, you should update your code to handle the new format:

- foreach ($builder->wheres as $field => $value) {
-     // ...
- }
+ foreach ($builder->wheres as $where) {
+     $field = $where['field'];
+     $operator = $where['operator'];
+     $value = $where['value'];
+
+     // ...
+ }

Algolia Engine filters

PR: laravel/scout#839

In previous Scout releases, the Algolia engine utilized numericFilters to power where conditions. However, numericFilters does not support simple string matching. In Scout 11.x, filters is now used instead of numericFilters.

Meilisearch Engine scout:delete-all-indexes Command

In previous releases, the Meilisearch engine’s scout:delete-all-indexes command would drop all indexes from the Meilisearch server. In Scout 11.x, the command now only drops indexes with the application's currently configured Scout prefix. Typically, this corresponds to the SCOUT_PREFIX environment variable and / or the scout.prefix configuration value.

Upgrading To 10.0 From 9.x

Minimum Versions

The following dependency versions have been updated:

  • The minimum PHP version is now v8.0
  • The minimum Laravel version is now v9.0

The getScoutKeyName Method

PR: laravel/scout#509

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [laravel/scout](https://github.com/laravel/scout) from 10.24.0 to 11.1.0.
- [Release notes](https://github.com/laravel/scout/releases)
- [Changelog](https://github.com/laravel/scout/blob/11.x/CHANGELOG.md)
- [Upgrade guide](https://github.com/laravel/scout/blob/11.x/UPGRADE.md)
- [Commits](laravel/scout@v10.24.0...v11.1.0)

---
updated-dependencies:
- dependency-name: laravel/scout
  dependency-version: 11.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Apr 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file php Pull requests that update Php code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants